Perfect Squares

Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n.

For example, given n = 12, return 3 because 12 = 4 + 4 + 4; given n = 13, return 2 because 13 = 4 + 9.

Solution:

  1. public class Solution {
  2. public int numSquares(int n) {
  3. // dp(i) represents the least number of PS which sum to i
  4. int[] dp = new int[n + 1];
  5. Arrays.fill(dp, Integer.MAX_VALUE);
  6. dp[0] = 0;
  7. for (int i = 0; i <= n; i++) {
  8. for (int j = 1; i + j * j <= n; j++) {
  9. dp[i + j * j] = Math.min(dp[i + j * j], dp[i] + 1);
  10. }
  11. }
  12. return dp[n];
  13. }
  14. }